home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / l / inet-handler / system_includes.h < prev    next >
C/C++ Source or Header  |  1994-04-05  |  996b  |  43 lines

  1. /*
  2.  * system_includes.h
  3.  *
  4.  * Author: Tomi Ollila <too@ajk.tele.fi>
  5.  *
  6.  * Copyright (c) 1993 AmiTCP/IP Group, <amitcp-group@hut.fi>
  7.  *                    All rights reserved.
  8.  *
  9.  * Created: Mon Sep 27 09:55:08 1993 too
  10.  * Last modified: Sat Oct 16 16:58:46 1993 too
  11.  *
  12.  * $Id: system_includes.h,v 1.1 1993/10/24 13:03:54 too Exp too $
  13.  *
  14.  * HISTORY
  15.  * $Log: system_includes.h,v $
  16.  * Revision 1.1  1993/10/24  13:03:54  too
  17.  * Initial revision
  18.  *
  19.  */
  20.  
  21. #ifndef _SYSTEM_INCLUDES_H_
  22. #define _SYSTEM_INCLUDES_H_
  23.  
  24. #if __GNUC__
  25. #include "inl_exec.h"
  26. #include "inl_dos.h"
  27. #define BASE_EXT_DECL
  28. #define BASE_PAR_DECL  struct Library * SocketBase,
  29. #define BASE_PAR_DECL0 struct Library * SocketBase
  30. #include "inl_socket.h"
  31. /*
  32.  * Include file to enable transparent program coding using visible SocketBase
  33.  * (local or global)
  34.  */
  35. #include "socketbase_in_context.h"
  36. #elif __SASC
  37. #include <proto/exec.h>
  38. #include <proto/dos.h>
  39. #include <proto/socket.h>
  40. #endif /* __GNUC__ */
  41.  
  42. #endif /* _SYSTEM_INCLUDES_H_ */
  43.